home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Disc to the Future 2
/
Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin
/
MAC
/
MPW_TOOL
/
TOOLS
/
TOOLS_WI
/
PERL
/
OS2
/
GLOB.C
< prev
next >
Wrap
C/C++ Source or Header
|
1992-01-04
|
312b
|
19 lines
/*
* Globbing for OS/2. Relies on the expansion done by the library
* startup code. (dds)
*/
#include <stdio.h>
#include <string.h>
main(int argc, char *argv[])
{
register i;
for (i = 1; i < argc; i++)
{
fputs(IsFileSystemFAT(argv[i]) ? strlwr(argv[i]) : argv[i], stdout);
putchar(0);
}
}